home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / September 93.iso / Archives / Sound / MIDI / MIDI Utilities / CMU Midi Toolkit / Includes / switches.h < prev    next >
Text File  |  1988-01-11  |  560b  |  25 lines

  1. /* switches.h  -- compile time switches for CMT */
  2.  
  3. /* LIGHTSPEED -- define if building CMT on Lightspeed C */
  4. #define LIGHTSPEED 1
  5.  
  6. /* MPW -- define if building CMT on MPW */
  7. /* #define MPW */
  8.  
  9. /* APPLICATION -- define if building CMT as an application */
  10. #define APPLICATION 1
  11.  
  12. /* memory space management (system dependent):
  13.  *    SPACE_FOR_PLAY must be enough space to allow
  14.  *    the all code packs for performance and recording to be
  15.  *    kept in memory
  16.  */
  17.  
  18. #ifdef CMT
  19. #define SPACE_FOR_PLAY 10000L
  20. #endif
  21.  
  22. #ifdef LIGHTSPEED
  23. #define SPACE_FOR_PLAY 10000L
  24. #endif
  25.